home *** CD-ROM | disk | FTP | other *** search
- property psp_mysprite, pf_myloch, pl_itempositionlist, pl_actionlist
- global gsp_backgroundsprite, gsp_markersprite, gi_action, go_airportdisplaymaster, gp_lastknownbackgroundposition
-
- on beginSprite me
- psp_mysprite = sprite(me.spriteNum)
- gsp_backgroundsprite = psp_mysprite
- if not voidp(gp_lastknownbackgroundposition) then
- psp_mysprite.loc = gp_lastknownbackgroundposition
- end if
- pf_myloch = psp_mysprite.locH
- end
-
- on exitFrame me
- if rollover(psp_mysprite.spriteNum) then
- h = (((the stage).rect.width / 2) - the mouseH) / 80
- pf_myloch = pf_myloch + h
- if pf_myloch > (0 + (psp_mysprite.member.width / 2)) then
- pf_myloch = 0 + (psp_mysprite.member.width / 2)
- end if
- if pf_myloch < ((the stage).rect.width - (psp_mysprite.member.width / 2)) then
- pf_myloch = (the stage).rect.width - (psp_mysprite.member.width / 2)
- end if
- psp_mysprite.locH = pf_myloch
- gp_lastknownbackgroundposition = psp_mysprite.loc
- sendAllSprites(#updatehotspots)
- sendAllSprites(#updatenavigator)
- end if
- end
-
- on getPropertyDescriptionList me
- return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
- end
-